Please see: http://ipython.readthedocs.io/en/stable/interactive/magics.html for further documentation of Jupyter Notebook/iPython Cell magic commands
In [1]:
%env
Out[1]:
In [2]:
%history
In [3]:
%lsmagic
Out[3]:
In [4]:
lsmagic
Out[4]:
In [7]:
%man git
In [8]:
%pwd
Out[8]:
In [9]:
%system
Out[9]:
In [10]:
%time
In [12]:
%timeit
print('Hello')
In [14]:
%profile
In [18]:
%%bash
ls
In [20]:
%%javascript
alert( 'Hello, world!' );
In [23]:
%%ruby
puts 'Hello World!'
In [25]:
%%html
<button type="button">Click Me!</button>
In [ ]: